runtime.mspan.next (field)
20 uses
runtime (current package)
arena.go#L331: a.fullList = s.next
arena.go#L332: s.next = nil
arena.go#L393: s.next = a.fullList
mheap.go#L397: next *mspan // next span in list, or nil if none
mheap.go#L1699: span.next = nil
mheap.go#L1736: list.first = span.next
mheap.go#L1738: span.prev.next = span.next
mheap.go#L1743: span.next.prev = span.prev
mheap.go#L1745: span.next = nil
mheap.go#L1755: if span.next != nil || span.prev != nil || span.list != nil {
mheap.go#L1756: println("runtime: failed mSpanList.insert", span, span.next, span.prev, span.list)
mheap.go#L1759: span.next = list.first
mheap.go#L1773: if span.next != nil || span.prev != nil || span.list != nil {
mheap.go#L1774: println("runtime: failed mSpanList.insertBack", span, span.next, span.prev, span.list)
mheap.go#L1780: list.last.next = span
mheap.go#L1797: for s := other.first; s != nil; s = s.next {
mheap.go#L1806: other.last.next = list.first
stack.go#L1257: next := s.next
stack.go#L1273: next := s.next
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |